home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power Programmierung
/
Power-Programmierung (Tewi)(1994).iso
/
magazine
/
drdobbs
/
c_spec
/
sources
/
cpy.c
< prev
next >
Wrap
Text File
|
1986-02-20
|
229b
|
14 lines
char *cpy( dest, src )
register char *dest, *src;
{
/* Works like strcpy but returns a pointer to the new end
* of string (ie. to the null).
*/
while( *src )
*dest++ = *src++ ;
*dest = 0;
return dest;
}